EmailSettings

data class EmailSettings(val type: NavigationSpec.Email.Type = Type.Plain, val to: List<String> = emptyList(), val cc: List<String> = emptyList(), val bcc: List<String> = emptyList(), val subject: String? = null, val body: String? = null, val attachments: List<Uri> = emptyList())

Settings for the email

Parameters

type

The Email.Type of formatting to be used

to

The list of recipent emails

cc

The list of cc emails

bcc

The list of bcc emails

subject

Optional subject of the email

body

Optional body of the email

attachments

List of Uri pointing to attachments to add

Constructors

Link copied to clipboard
constructor(type: NavigationSpec.Email.Type = Type.Plain, to: List<String> = emptyList(), cc: List<String> = emptyList(), bcc: List<String> = emptyList(), subject: String? = null, body: String? = null, attachments: List<Uri> = emptyList())

Properties

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
val body: String? = null
Link copied to clipboard
val cc: List<String>
Link copied to clipboard
Link copied to clipboard
val subject: String? = null
Link copied to clipboard
val to: List<String>
Link copied to clipboard